home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-04-19 | 1.1 KB | 37 lines | [TEXT/MOSS] |
- /*
- * CONFIDENTIAL AND PROPRIETARY SOURCE CODE
- * OF NETSCAPE COMMUNICATIONS CORPORATION
- *
- * Copyright (c) 1998, 1999 Netscape Communications Corporation.
- * All Rights Reserved.
- *
- * Use of this Source Code is subject to the terms of the applicable
- * license agreement from Netscape Communications Corporation.
- *
- * The copyright notice(s) in this Source Code does not indicate actual
- * or intended publication of this Source Code.
- */
-
- window.addEventListener("load", SetSecurityButton, false);
-
- function SetSecurityButton()
- {
- dump("in SetSecurityButton\n");
-
- var ui = Components.classes["component://netscape/secure_browser_ui"].getService();
- ui = ui.QueryInterface(Components.interfaces.nsSecureBrowserUI);
-
- var button = document.getElementById('security-button');
- if (button && window.content)
- ui.init(window.content, button);
- }
-
- function displayPageInfo()
- {
- var psm = Components.classes["component://netscape/psm"].getService();
- psm = psm.QueryInterface(Components.interfaces.nsIPSMComponent);
- psm.DisplaySecurityAdvisor( null );
- }
-
-
-